home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_06_02 / v6n2024b.txt < prev    next >
Text File  |  1989-09-26  |  656b  |  24 lines

  1.  
  2. DATA OBJECT DECLARATIONS
  3.  
  4. keyword     FL          PL          BL
  5.  
  6. (none)      static      none        dynamic
  7. extern      static      ---         none
  8. static      static      ---         static
  9. auto        ---         ---         dynamic
  10. register    ---         none        dynamic
  11. typedef     none        ---         none
  12.  
  13. FUNCTION DECLARATIONS
  14.  
  15. keyword     FL          PL          BL
  16.  
  17. (none)      function    none        none
  18. extern      function    ---         none
  19. static      function    ---         ---
  20. auto        ---         ---         ---
  21. register    ---         none        ---
  22. typedef     none        ---         none
  23.  
  24.